home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / IMGLIST.PAK / CHESSPCS.RH < prev    next >
Text File  |  1997-05-06  |  1KB  |  32 lines

  1. //
  2. // Bitmap of pieces 25x25
  3. //
  4. #define IDB_WKING           2001
  5. #define IDB_WQUEEN          2002
  6. #define IDB_WROOK           2003
  7. #define IDB_WBISHOP         2004
  8. #define IDB_WKNIGHT         2005
  9. #define IDB_WPAWN           2006
  10.  
  11. #define IDB_BKING           2007
  12. #define IDB_BQUEEN          2008
  13. #define IDB_BROOK           2009
  14. #define IDB_BBISHOP         2010
  15. #define IDB_BKNIGHT         2011
  16. #define IDB_BPAWN           2012
  17.  
  18. #define  MASK_DELTA           100
  19.  
  20. #define IDB_WKING_MASK     (IDB_WKING   + MASK_DELTA)
  21. #define IDB_WQUEEN_MASK    (IDB_WQUEEN  + MASK_DELTA)
  22. #define IDB_WROOK_MASK     (IDB_WROOK   + MASK_DELTA)
  23. #define IDB_WBISHOP_MASK   (IDB_WBISHOP + MASK_DELTA)
  24. #define IDB_WKNIGHT_MASK   (IDB_WKNIGHT + MASK_DELTA)
  25. #define IDB_WPAWN_MASK     (IDB_WPAWN   + MASK_DELTA)
  26. #define IDB_BKING_MASK     (IDB_BKING   + MASK_DELTA)
  27. #define IDB_BQUEEN_MASK    (IDB_BQUEEN  + MASK_DELTA)
  28. #define IDB_BROOK_MASK     (IDB_BROOK   + MASK_DELTA)
  29. #define IDB_BBISHOP_MASK   (IDB_BBISHOP + MASK_DELTA)
  30. #define IDB_BKNIGHT_MASK   (IDB_BKNIGHT + MASK_DELTA)
  31. #define IDB_BPAWN_MASK     (IDB_BPAWN   + MASK_DELTA)
  32.